Details

Add Lut Lookup Table effect to your camera.

Lut use Shader 3.0

Add it to the Camera GameObject via the Components menuCameraFilterPack > LUT > Plus

*without and with Camera Filter Pack Lut Plus


Property

Range

Default

Lut Texture // Must be a size of 256x16
Blend 0 to 1 1f ( 0 = original, 1 = Lut )

Manipulate Lut Simple by script

Example:

// Drag and Drop your Camera GameObject 
// with the Lut Simple component 
// to your current script on the CamFX_Lut_Plus field 

public CameraFilterPack_Lut_Plus CamFX_Lut_Plus; 

void Update() 
{
	CamFX_Lut_Plus.Blend =  1f;
}